.di-section {
    height: 86vh;
    width: 100%;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    padding: 20px;
}

.di-image-section {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2c3e50, #1a1a2e);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

.di-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.di-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.di-dynamic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.di-dynamic-bg.active {
    opacity: 1;
}

.di-glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.6) 0%, transparent 70%);
    animation: di-glowMove 15s infinite alternate;
    z-index: 2;
}

.di-content-section {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.di-content-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.di-content-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 280px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.di-content-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.di-stats {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}

.di-stat-item {
    text-align: center;
}

.di-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.di-stat-label {
    font-size: 0.9rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.di-cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.di-cta-button:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 7px 15px rgba(52, 152, 219, 0.3);
}

.di-circle-decoration {
    position: absolute;
    top: 12%;
    left: 42%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
    border: 8px solid white;
    animation: di-float 6s ease-in-out infinite;
    overflow: hidden;
}

.di-circle-decoration:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #3498db, #2980b9, #3498db);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.7;
    animation: di-rotate 10s linear infinite;
}

.di-circle-decoration svg {
    width: 60px;
    height: 60px;
    fill: white;
    z-index: 2;
    position: relative;
}

@keyframes di-zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes di-glowMove {
    0% {
        top: 10%;
        left: 10%;
    }
    25% {
        top: 60%;
        left: 20%;
    }
    50% {
        top: 30%;
        left: 70%;
    }
    75% {
        top: 80%;
        left: 40%;
    }
    100% {
        top: 20%;
        left: 60%;
    }
}

@keyframes di-float {
    0% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, -55%);
    }
    100% {
        transform: translate(-50%, -50%);
    }
}

@keyframes di-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .di-circle-decoration {
        left: 45%;
    }
}

@media (max-width: 992px) {
    .di-section {
        flex-direction: column;
        height: auto;
    }
    
    .di-image-section {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        height: 40vh;
    }
    
    .di-content-section {
        padding: 40px 30px;
    }
    
    .di-content-section h2 {
        font-size: 2rem;
    }
    
    .di-circle-decoration {
        top: -70px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 120px;
    }
    
    .di-circle-decoration svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .di-content-section {
        padding: 30px 20px;
    }
    
    .di-content-section h2 {
        font-size: 1.8rem;
    }
    
    .di-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .di-circle-decoration {
        width: 100px;
        height: 100px;
        top: -50px;
    }
    
    .di-circle-decoration svg {
        width: 40px;
        height: 40px;
    }
}
